Nevron Open Vision Documentation
Nevron.Nov Namespace / Function<TArg> Delegate


In This Topic
    Function<TArg> Delegate
    In This Topic
    Delegate for a void function that has one argument of type TArg.
    Syntax
    'Declaration
     
    
    Public Delegate Sub Function(Of TArg)( _
       ByVal arg As TArg _
    ) 
    'Usage
     
    
    Dim instance As New Function(Of TArg)(AddressOf HandlerMethod)
    public delegate void Function<TArg>( 
       TArg arg
    )

    Parameters

    arg

    Type Parameters

    TArg
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later)

    See Also